home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2005 October / PCWOCT05.iso / Software / FromTheMag / XAMPP 1.4.14 / xampp-win32-1.4.14-installer.exe / xampp / php / pear / adodb / adodb-csvlib.inc.php next >
PHP Script  |  2005-05-17  |  9KB  |  311 lines

  1. <?php
  2.  
  3. // security - hide paths
  4. if (!defined('ADODB_DIR')) die();
  5.  
  6. global $ADODB_INCLUDED_CSV;
  7. $ADODB_INCLUDED_CSV = 1;
  8.  
  9. /* 
  10.  
  11.   V4.63 17 May 2005  (c) 2000-2005 John Lim (jlim@natsoft.com.my). All rights reserved.
  12.   Released under both BSD license and Lesser GPL library license. 
  13.   Whenever there is any discrepancy between the two licenses, 
  14.   the BSD license will take precedence. See License.txt. 
  15.   Set tabs to 4 for best viewing.
  16.   
  17.   Latest version is available at http://adodb.sourceforge.net
  18.   
  19.   Library for CSV serialization. This is used by the csv/proxy driver and is the 
  20.   CacheExecute() serialization format. 
  21.   
  22.   ==== NOTE ====
  23.   Format documented at http://php.weblogs.com/ADODB_CSV
  24.   ==============
  25. */
  26.  
  27.     /**
  28.       * convert a recordset into special format
  29.      *
  30.      * @param rs    the recordset
  31.      *
  32.      * @return    the CSV formated data
  33.      */
  34.     function _rs2serialize(&$rs,$conn=false,$sql='')
  35.     {
  36.         $max = ($rs) ? $rs->FieldCount() : 0;
  37.         
  38.         if ($sql) $sql = urlencode($sql);
  39.         // metadata setup
  40.         
  41.         if ($max <= 0 || $rs->dataProvider == 'empty') { // is insert/update/delete
  42.             if (is_object($conn)) {
  43.                 $sql .= ','.$conn->Affected_Rows();
  44.                 $sql .= ','.$conn->Insert_ID();
  45.             } else
  46.                 $sql .= ',,';
  47.             
  48.             $text = "====-1,0,$sql\n";
  49.             return $text;
  50.         }
  51.         $tt = ($rs->timeCreated) ? $rs->timeCreated : time();
  52.         
  53.         ## changed format from ====0 to ====1
  54.         $line = "====1,$tt,$sql\n";
  55.         
  56.         if ($rs->databaseType == 'array') {
  57.             $rows =& $rs->_array;
  58.         } else {
  59.             $rows = array();
  60.             while (!$rs->EOF) {    
  61.                 $rows[] = $rs->fields;
  62.                 $rs->MoveNext();
  63.             } 
  64.         }
  65.         
  66.         for($i=0; $i < $max; $i++) {
  67.             $o =& $rs->FetchField($i);
  68.             $flds[] = $o;
  69.         }
  70.     
  71.         $savefetch = isset($rs->adodbFetchMode) ? $rs->adodbFetchMode : $rs->fetchMode;
  72.         $class = $rs->connection->arrayClass;
  73.         $rs2 =& new $class();
  74.         $rs2->sql = $rs->sql;
  75.         $rs2->oldProvider = $rs->dataProvider; 
  76.         $rs2->InitArrayFields($rows,$flds);
  77.         $rs2->fetchMode = $savefetch;
  78.         return $line.serialize($rs2);
  79.     }
  80.  
  81.     
  82. /**
  83. * Open CSV file and convert it into Data. 
  84. *
  85. * @param url          file/ftp/http url
  86. * @param err        returns the error message
  87. * @param timeout    dispose if recordset has been alive for $timeout secs
  88. *
  89. * @return        recordset, or false if error occured. If no
  90. *            error occurred in sql INSERT/UPDATE/DELETE, 
  91. *            empty recordset is returned
  92. */
  93.     function &csv2rs($url,&$err,$timeout=0, $rsclass='ADORecordSet_array')
  94.     {
  95.         $err = false;
  96.         $fp = @fopen($url,'rb');
  97.         if (!$fp) {
  98.             $err = $url.' file/URL not found';
  99.             return false;
  100.         }
  101.         flock($fp, LOCK_SH);
  102.         $arr = array();
  103.         $ttl = 0;
  104.         
  105.         if ($meta = fgetcsv($fp, 32000, ",")) {
  106.             // check if error message
  107.             if (strncmp($meta[0],'****',4) === 0) {
  108.                 $err = trim(substr($meta[0],4,1024));
  109.                 fclose($fp);
  110.                 return false;
  111.             }
  112.             // check for meta data
  113.             // $meta[0] is -1 means return an empty recordset
  114.             // $meta[1] contains a time 
  115.     
  116.             if (strncmp($meta[0], '====',4) === 0) {
  117.             
  118.                 if ($meta[0] == "====-1") {
  119.                     if (sizeof($meta) < 5) {
  120.                         $err = "Corrupt first line for format -1";
  121.                         fclose($fp);
  122.                         return false;
  123.                     }
  124.                     fclose($fp);
  125.                     
  126.                     if ($timeout > 0) {
  127.                         $err = " Illegal Timeout $timeout ";
  128.                         return false;
  129.                     }
  130.                     
  131.                     $rs =& new $rsclass($val=true);
  132.                     $rs->fields = array();
  133.                     $rs->timeCreated = $meta[1];
  134.                     $rs->EOF = true;
  135.                     $rs->_numOfFields = 0;
  136.                     $rs->sql = urldecode($meta[2]);
  137.                     $rs->affectedrows = (integer)$meta[3];
  138.                     $rs->insertid = $meta[4];    
  139.                     return $rs;
  140.                 } 
  141.             # Under high volume loads, we want only 1 thread/process to _write_file
  142.             # so that we don't have 50 processes queueing to write the same data.
  143.             # We use probabilistic timeout, ahead of time.
  144.             #
  145.             # -4 sec before timeout, give processes 1/32 chance of timing out
  146.             # -2 sec before timeout, give processes 1/16 chance of timing out
  147.             # -1 sec after timeout give processes 1/4 chance of timing out
  148.             # +0 sec after timeout, give processes 100% chance of timing out
  149.                 if (sizeof($meta) > 1) {
  150.                     if($timeout >0){ 
  151.                         $tdiff = (integer)( $meta[1]+$timeout - time());
  152.                         if ($tdiff <= 2) {
  153.                             switch($tdiff) {
  154.                             case 4:
  155.                             case 3:
  156.                                 if ((rand() & 31) == 0) {
  157.                                     fclose($fp);
  158.                                     $err = "Timeout 3";
  159.                                     return false;
  160.                                 }
  161.                                 break;
  162.                             case 2: 
  163.                                 if ((rand() & 15) == 0) {
  164.                                     fclose($fp);
  165.                                     $err = "Timeout 2";
  166.                                     return false;
  167.                                 }
  168.                                 break;
  169.                             case 1:
  170.                                 if ((rand() & 3) == 0) {
  171.                                     fclose($fp);
  172.                                     $err = "Timeout 1";
  173.                                     return false;
  174.                                 }
  175.                                 break;
  176.                             default: 
  177.                                 fclose($fp);
  178.                                 $err = "Timeout 0";
  179.                                 return false;
  180.                             } // switch
  181.                             
  182.                         } // if check flush cache
  183.                     }// (timeout>0)
  184.                     $ttl = $meta[1];
  185.                 }
  186.                 //================================================
  187.                 // new cache format - use serialize extensively...
  188.                 if ($meta[0] === '====1') {
  189.                     // slurp in the data
  190.                     $MAXSIZE = 128000;
  191.                     
  192.                     $text = fread($fp,$MAXSIZE);
  193.                     if (strlen($text)) {
  194.                         while ($txt = fread($fp,$MAXSIZE)) {
  195.                             $text .= $txt;
  196.                         }
  197.                     }
  198.                     fclose($fp);
  199.                     $rs = unserialize($text);
  200.                     if (is_object($rs)) $rs->timeCreated = $ttl;
  201.                     else {
  202.                         $err = "Unable to unserialize recordset";
  203.                         //echo htmlspecialchars($text),' !--END--!<p>';
  204.                     }
  205.                     return $rs;
  206.                 }
  207.                 
  208.                 $meta = false;
  209.                 $meta = fgetcsv($fp, 32000, ",");
  210.                 if (!$meta) {
  211.                     fclose($fp);
  212.                     $err = "Unexpected EOF 1";
  213.                     return false;
  214.                 }
  215.             }
  216.  
  217.             // Get Column definitions
  218.             $flds = array();
  219.             foreach($meta as $o) {
  220.                 $o2 = explode(':',$o);
  221.                 if (sizeof($o2)!=3) {
  222.                     $arr[] = $meta;
  223.                     $flds = false;
  224.                     break;
  225.                 }
  226.                 $fld =& new ADOFieldObject();
  227.                 $fld->name = urldecode($o2[0]);
  228.                 $fld->type = $o2[1];
  229.                 $fld->max_length = $o2[2];
  230.                 $flds[] = $fld;
  231.             }
  232.         } else {
  233.             fclose($fp);
  234.             $err = "Recordset had unexpected EOF 2";
  235.             return false;
  236.         }
  237.         
  238.         // slurp in the data
  239.         $MAXSIZE = 128000;
  240.         
  241.         $text = '';
  242.         while ($txt = fread($fp,$MAXSIZE)) {
  243.             $text .= $txt;
  244.         }
  245.             
  246.         fclose($fp);
  247.         @$arr = unserialize($text);
  248.         //var_dump($arr);
  249.         if (!is_array($arr)) {
  250.             $err = "Recordset had unexpected EOF (in serialized recordset)";
  251.             if (get_magic_quotes_runtime()) $err .= ". Magic Quotes Runtime should be disabled!";
  252.             return false;
  253.         }
  254.         $rs =& new $rsclass();
  255.         $rs->timeCreated = $ttl;
  256.         $rs->InitArrayFields($arr,$flds);
  257.         return $rs;
  258.     }
  259.     
  260.  
  261.     /**
  262.     * Save a file $filename and its $contents (normally for caching) with file locking
  263.     */
  264.     function adodb_write_file($filename, $contents,$debug=false)
  265.     { 
  266.     # http://www.php.net/bugs.php?id=9203 Bug that flock fails on Windows
  267.     # So to simulate locking, we assume that rename is an atomic operation.
  268.     # First we delete $filename, then we create a $tempfile write to it and 
  269.     # rename to the desired $filename. If the rename works, then we successfully 
  270.     # modified the file exclusively.
  271.     # What a stupid need - having to simulate locking.
  272.     # Risks:
  273.     # 1. $tempfile name is not unique -- very very low
  274.     # 2. unlink($filename) fails -- ok, rename will fail
  275.     # 3. adodb reads stale file because unlink fails -- ok, $rs timeout occurs
  276.     # 4. another process creates $filename between unlink() and rename() -- ok, rename() fails and  cache updated
  277.         if (strncmp(PHP_OS,'WIN',3) === 0) {
  278.             // skip the decimal place
  279.             $mtime = substr(str_replace(' ','_',microtime()),2); 
  280.             // getmypid() actually returns 0 on Win98 - never mind!
  281.             $tmpname = $filename.uniqid($mtime).getmypid();
  282.             if (!($fd = fopen($tmpname,'a'))) return false;
  283.             $ok = ftruncate($fd,0);            
  284.             if (!fwrite($fd,$contents)) $ok = false;
  285.             fclose($fd);
  286.             chmod($tmpname,0644);
  287.             // the tricky moment
  288.             @unlink($filename);
  289.             if (!@rename($tmpname,$filename)) {
  290.                 unlink($tmpname);
  291.                 $ok = false;
  292.             }
  293.             if (!$ok) {
  294.                 if ($debug) ADOConnection::outp( " Rename $tmpname ".($ok? 'ok' : 'failed'));
  295.             }
  296.             return $ok;
  297.         }
  298.         if (!($fd = fopen($filename, 'a'))) return false;
  299.         if (flock($fd, LOCK_EX) && ftruncate($fd, 0)) {
  300.             $ok = fwrite( $fd, $contents );
  301.             fclose($fd);
  302.             chmod($filename,0644);
  303.         }else {
  304.             fclose($fd);
  305.             if ($debug)ADOConnection::outp( " Failed acquiring lock for $filename<br>\n");
  306.             $ok = false;
  307.         }
  308.     
  309.         return $ok;
  310.     }
  311. ?>